In this example I will show you how to create xml document using Linq .In order to extract data from a database and create an xml document we need to include the namespace using System.Xml.Linq. The important class with the Linq to Xml hierarchy XElements and XDocument, XElement class represents an XML element node that contains child elements as child nodes.The output xml file will be saved at a specified location of the project folder.
This example I used northwind sample database for more detail about how to download click link button it will show a popup.
Example:
protected void Page_Load(object sender, EventArgs e)
{
models db = new models();
var customerOrders = from customer in db.Customers
where customer.ContactName.StartsWith("C") && customer.Orders.Count> 0
orderby customer.ContactName
select customer;
var xml = new XElement("customers", from customer in customerOrders.ToList()
select new XElement("ContactName",
new XAttribute("ContactName", customer.ContactName), new XAttribute("phone", customer.Phone)));
var path = Path.Combine(Server.MapPath("~/Xmlfiles"), "file1" + ".xml");
System.IO.File.WriteAllText(path,xml.ToString());
}
Output:
Post your comments / questions
Recent Article
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
- The request was aborted: Could not create SSL/TLS secure channel -Error in Asp.net
Related Article